Configuring the BlueCielo Project Portal Publishing Service specifies where the service will monitor for new files, how often it monitors, and where and how it will register the files in the Publisher database for publishing.
To configure the BlueCielo Project Portal File Publishing Service:
Locate the setting binding name="Binding_ES" and set the security mode setting to Transport like in the following example:
<binding name="Binding_ES" closeTimeout="00:10:00" openTimeout="00:01:00" receiveTimeout="00:50:00" sendTimeout="00:50:00" messageEncoding="Text" maxReceivedMessageSize="2147483647"> <!-- HTTPS: security mode = Transport HTTP: security mode = TransportCredentialOnly --> <security mode="Transport"> <transport clientCredentialType="Windows" realm="" /> </security> </binding>
Following is a simple example of these settings in ProjectPortalService.exe.config:
<userSettings> <BlueCieloECM.Publisher.KronodocService.Properties.Settings> <setting name="MonitorSources" serializeAs="Xml"> <value> <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <string>FC1A22;0</string> <string>1E9967;0</string> </ArrayOfString> </value> </setting> </BlueCieloECM.Publisher.KronodocService.Properties.Settings> </userSettings> <applicationSettings> <BlueCieloECM.Publisher.KronodocService.Properties.Settings> <setting name="PublisherServicesAddress" serializeAs="String"> <value>http://localhost/Publisher/</value> </setting> <setting name="MonitorSecondsPeriod" serializeAs="String"> <value>60</value> </setting> <setting name="PreventDuplicate" serializeAs="String"> <value>True</value> </setting> </BlueCieloECM.Publisher.KronodocService.Properties.Settings> </applicationSettings>
Related concepts
Understanding the BlueCielo Project Portal system link
Related tasks
Configuring the BlueCielo File Publishing Service
Configuring a SharePoint server
Configuring a Meridian Enterprise Server cluster
Related information